home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjframe11.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  880 b   |  35 lines

  1. #ifndef _DTJFRAME11_HPP
  2. #define _DTJFRAME11_HPP
  3.  
  4. #include "dtjwnd11.hpp"
  5.  
  6. class METAEXPORTCLASSDEF DTJFrame11 : public DTJWindow11
  7. {
  8.     public:
  9.         DTJFrame11( const MetaObject * pMetaObj );
  10.         virtual ~DTJFrame11();
  11.         
  12.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  13.                    ostream& src,
  14.                    MMCodeGenerationParms& pGenParms );
  15.  
  16.     virtual void        AmendPopup( WPopupMenu *,
  17.                     WBool before );
  18.  
  19.     protected:
  20.         virtual void GenerateExtraProperties( ostream& src,
  21.                     MMJCodeGenerationParms* pGenParms ) const;
  22.  
  23.     private:
  24.     WBool     HandleMenuEditMenuClick( WMenuItem *, WEventData * );
  25.  
  26.     private:
  27.         WMenuItem *        _menuEditMenuItem;
  28. };
  29.  
  30. // needed for mdreader
  31. typedef DTJFrame11 DTjava__dot__awt__dot__Frame__dot__11;
  32. typedef WFrame   java__dot__awt__dot__Frame__dot__11;
  33.  
  34. #endif // _DTJFRAME11_HPP
  35.